home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / zgebak.z / zgebak
Encoding:
Text File  |  2002-10-03  |  4.0 KB  |  133 lines

  1.  
  2.  
  3.  
  4. ZZZZGGGGEEEEBBBBAAAAKKKK((((3333SSSS))))                                                          ZZZZGGGGEEEEBBBBAAAAKKKK((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      ZGEBAK - form the right or left eigenvectors of a complex general matrix
  10.      by backward transformation on the computed eigenvectors of the balanced
  11.      matrix output by ZGEBAL
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      SUBROUTINE ZGEBAK( JOB, SIDE, N, ILO, IHI, SCALE, M, V, LDV, INFO )
  15.  
  16.          CHARACTER      JOB, SIDE
  17.  
  18.          INTEGER        IHI, ILO, INFO, LDV, M, N
  19.  
  20.          DOUBLE         PRECISION SCALE( * )
  21.  
  22.          COMPLEX*16     V( LDV, * )
  23.  
  24. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  25.      These routines are part of the SCSL Scientific Library and can be loaded
  26.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  27.      directs the linker to use the multi-processor version of the library.
  28.  
  29.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  30.      4 bytes (32 bits). Another version of SCSL is available in which integers
  31.      are 8 bytes (64 bits).  This version allows the user access to larger
  32.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  33.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  34.      only one of the two versions; 4-byte integer and 8-byte integer library
  35.      calls cannot be mixed.
  36.  
  37. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  38.      ZGEBAK forms the right or left eigenvectors of a complex general matrix
  39.      by backward transformation on the computed eigenvectors of the balanced
  40.      matrix output by ZGEBAL.
  41.  
  42. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  43.      JOB     (input) CHARACTER*1
  44.              Specifies the type of backward transformation required:  = 'N',
  45.              do nothing, return immediately; = 'P', do backward transformation
  46.              for permutation only; = 'S', do backward transformation for
  47.              scaling only; = 'B', do backward transformations for both
  48.              permutation and scaling.  JOB must be the same as the argument
  49.              JOB supplied to ZGEBAL.
  50.  
  51.      SIDE    (input) CHARACTER*1
  52.              = 'R':  V contains right eigenvectors;
  53.              = 'L':  V contains left eigenvectors.
  54.  
  55.      N       (input) INTEGER
  56.              The number of rows of the matrix V.  N >= 0.
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. ZZZZGGGGEEEEBBBBAAAAKKKK((((3333SSSS))))                                                          ZZZZGGGGEEEEBBBBAAAAKKKK((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      ILO     (input) INTEGER
  75.              IHI     (input) INTEGER The integers ILO and IHI determined by
  76.              ZGEBAL.  1 <= ILO <= IHI <= N, if N > 0; ILO=1 and IHI=0, if N=0.
  77.  
  78.      SCALE   (input) DOUBLE PRECISION array, dimension (N)
  79.              Details of the permutation and scaling factors, as returned by
  80.              ZGEBAL.
  81.  
  82.      M       (input) INTEGER
  83.              The number of columns of the matrix V.  M >= 0.
  84.  
  85.      V       (input/output) COMPLEX*16 array, dimension (LDV,M)
  86.              On entry, the matrix of right or left eigenvectors to be
  87.              transformed, as returned by ZHSEIN or ZTREVC.  On exit, V is
  88.              overwritten by the transformed eigenvectors.
  89.  
  90.      LDV     (input) INTEGER
  91.              The leading dimension of the array V. LDV >= max(1,N).
  92.  
  93.      INFO    (output) INTEGER
  94.              = 0:  successful exit
  95.              < 0:  if INFO = -i, the i-th argument had an illegal value.
  96.  
  97. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  98.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  99.  
  100.      This man page is available only online.
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.